projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfc47ff
)
ramips: use maccalc instead of hexdump + sed
author
Gabor Juhos
<
[email protected]
>
Mon, 15 Aug 2011 19:00:23 +0000
(19:00 +0000)
committer
Gabor Juhos
<
[email protected]
>
Mon, 15 Aug 2011 19:00:23 +0000
(19:00 +0000)
SVN-Revision: 28007
target/linux/ramips/base-files/etc/uci-defaults/nw718
patch
|
blob
|
history
diff --git
a/target/linux/ramips/base-files/etc/uci-defaults/nw718
b/target/linux/ramips/base-files/etc/uci-defaults/nw718
index 4ce3bc9af8aa1ededb2f6c7f1d503af197254a8f..590b65913ec0b2e81ab1e03441d262f0963393fa 100755
(executable)
--- a/
target/linux/ramips/base-files/etc/uci-defaults/nw718
+++ b/
target/linux/ramips/base-files/etc/uci-defaults/nw718
@@
-8,15
+8,16
@@
nw718_set_macs() {
local lan_mac
local wan_mac
+ [ -z $(which maccalc) ] && return
+
. /etc/functions.sh
part=$(find_mtd_part "factory")
[ -z $part ] && return
- lan_mac=$(dd bs=1 skip=4 count=6 if=$part 2>/dev/null |
hexdump -v -e '1/1 "%02x"' | sed 's/\(..\)/\1:/g;s/:$//'
)
+ lan_mac=$(dd bs=1 skip=4 count=6 if=$part 2>/dev/null |
maccalc bin2mac
)
[ -z $lan_mac ] && return
- [ -z $(which maccalc) ] && return
wan_mac=$(maccalc add $lan_mac 1)
uci batch <<EOF